Key Enum is a public enumeration of longs to be associated with the RegKey Property. The values are:
Public Enum Key
CROOT = &H80000000
CURUSER = &H80000001
LOCMACH = &H80000002
USERS = -2147483645
End Enum
These values correspond with the values:
HKEY_CLASSES_ROOT = &H80000000
HKEY_CURRENT_USER = &H80000001
HKEY_LOCAL_MACHINE = &H80000002
HKEY_USERS = -2147483645
Which are the Root Registry Keys employed by RegEasy.
Use the Enum values to set the value for RegKey:
RegKey = CURUSER
(c)1998 Silicon Prairie Software Co. All rights reserved.